home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / pluginy Firefox / 9825 / 9825.xpi / chrome / content / folder_chooser.xul < prev    next >
Extensible Markup Language  |  2009-07-17  |  1KB  |  37 lines

  1. <?xml version="1.0"?>
  2.  
  3. <!DOCTYPE window SYSTEM "chrome://smarterwiki/locale/smarterwiki.dtd">
  4.  
  5. <?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
  6. <?xml-stylesheet href="chrome://smarterwiki/content/smarterwiki.css" type="text/css"?>
  7.  
  8.  
  9. <dialog id="SW_FolderChooser" 
  10.         title="&folder_chooser.choose_folder;"
  11.         buttons="accept,cancel"
  12.         persist="screenX screenY"
  13.         spacerflex="1"
  14.         ondialogaccept="FolderChooser.ondialogaccept()"
  15.         ondialogcancel="FolderChooser.ondialogcancel()"
  16.         xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
  17.  
  18.     <stringbundleset id="stringbundleset">
  19.         <!--
  20.         For some reason the id must be exactly that or it will fail :(
  21.         -->
  22.         <stringbundle id="smarterwiki_strings" 
  23.                       src="chrome://smarterwiki/locale/strings.properties"/>
  24.     </stringbundleset>
  25.  
  26.     <script type="application/x-javascript"
  27.             src="chrome://smarterwiki/content/jquery-1.2.6.js" />
  28.     <script type="application/x-javascript" src="folder_chooser.js" />
  29.  
  30.     <vbox>
  31.         <label id="dest-folder-label" value="&folder_chooser.destination_folder;" class="header" />
  32.         <hbox>
  33.             <textbox id="dest-folder-textbox" minwidth="350" maxwidth="450" value="" />
  34.             <button id="browse-button" oncommand="FolderChooser.onbrowsecommand()" label="&folder_chooser.browse;" />
  35.         </hbox>
  36.     </vbox>
  37. </dialog>